home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #4 / Amiga Plus CD - 2000 - No. 4.iso / Tools / Treiber / Misc / Mroocheck / FreeWheel / Source / ButtonWin.h < prev    next >
C/C++ Source or Header  |  2000-04-20  |  452b  |  19 lines

  1.  
  2. struct ButtonWinContext
  3. {
  4.   void (*Dispose)(struct ButtonWinContext *pwc);
  5.   BOOL (*Handle)(struct ButtonWinContext *pwc,unsigned long sigs);
  6.   unsigned long Signals;
  7.   BOOL (*Show)(struct ButtonWinContext *pwc);
  8.   void (*Hide)(struct ButtonWinContext *pwc);
  9.   struct PrefsGroup *Prefs;
  10.   struct GUIContext *GUI;
  11.   struct Window *Window;
  12.   struct Screen *Screen;
  13.   BOOL Visible;
  14. };
  15.  
  16. struct ButtonWinContext *ButtonWin_Create(struct PrefsGroup *pg);
  17.  
  18.  
  19.